home *** CD-ROM | disk | FTP | other *** search
- ;
- ; QPEG video driver
- ; for ATI chipsets
- ;
- ; Modified to work on ATI VGA WONDER 18800 12/12/93 Yaron Keren
-
- .286
- Code Segment Para 'Code'
- Assume cs:Code
- Org 100h
-
- Procs dw Bank,Init,Exit,0
-
- Bank: shl al,1
- push ax
- mov dx,cs:ExtReg
- mov al,0b2h
- out dx,al
- inc dx
- in al,dx
- pop dx
- and al,0e1h
- or al,dl
- ; 2 lines added
- mov ah,al
- mov al,0b2h
-
- mov dx,cs:ExtReg
-
- ; 1 line removed
- ; inc dx
-
- ; 1 line changed
- out dx,ax
-
- retf
-
- ExtReg dw ?
-
- Init: mov ax,0c000h
- mov es,ax
- mov dx,es:[0010h]
- mov cs:ExtReg,dx
- mov al,0beh
- out dx,al
- inc dx
- in al,dx
- and al,11110111b
- out dx,al
- retf
-
- Exit: retf
-
- Code Ends
- End Procs
-
- ; End of source.
-